Ad
  • Custom User Avatar

    Nice. Thank you for your hint! Didnt know that :)

  • Custom User Avatar

    I got a pretty strange error message, when clicking attempt. Sample test are running fine. Does anyone know, what this means?

    0 swift 0x00000000034bf568 llvm::sys::PrintStackTrace(llvm::raw_ostream&) + 40
    1 swift 0x00000000034c0146
    2 libpthread.so.0 0x00007f6d3ee61330
    3 libpthread.so.0 0x00007f6d3f1d67c5
    4 libpthread.so.0 0x00007f6d3f1d6ea1
    5 libpthread.so.0 0x00007f6d3f1d82e8
    6 libpthread.so.0 0x00007f6d3f1d6efb
    7 libpthread.so.0 0x00007f6d3f1d8395
    8 libXCTest.so 0x00007f6d38989641
    9 libXCTest.so 0x00007f6d389a8460
    10 libXCTest.so 0x00007f6d389a55c5
    11 libXCTest.so 0x00007f6d389a7806
    12 libXCTest.so 0x00007f6d3898f9e0
    13 libXCTest.so 0x00007f6d389895c5 TF6XCTest14XCTAssertEqualuRxs9EquatablerFTKzT_xKzT_xKT_SS4fileVs12StaticString4lineSu_T + 101
    14 libXCTest.so 0x00007f6d3f1d6deb TF6XCTest14XCTAssertEqualuRxs9EquatablerFTKzT_xKzT_xKT_SS4fileVs12StaticString4lineSu_T + 109369483
    15 libXCTest.so 0x00007f6d3f1d7559 TF6XCTest14XCTAssertEqualuRxs9EquatablerFTKzT_xKzT_xKT_SS4fileVs12StaticString4lineSu_T + 109371385
    16 libXCTest.so 0x00007f6d3f1d8880 TF6XCTest14XCTAssertEqualuRxs9EquatablerFTKzT_xKzT_xKT_SS4fileVs12StaticString4lineSu_T + 109376288
    17 libXCTest.so 0x00007f6d3f1d6b5e TF6XCTest14XCTAssertEqualuRxs9EquatablerFTKzT_xKzT_xKT_SS4fileVs12StaticString4lineSu_T + 109368830
    18 libXCTest.so 0x00007f6d3f1d8815 TF6XCTest14XCTAssertEqualuRxs9EquatablerFTKzT_xKzT_xKT_SS4fileVs12StaticString4lineSu_T + 109376181
    19 libXCTest.so 0x00007f6d389bc6ab
    20 libXCTest.so 0x00007f6d389931a2
    21 libXCTest.so 0x00007f6d389bc660
    22 libXCTest.so 0x00007f6d389bc3e0
    23 libXCTest.so 0x00007f6d38992280 TFC6XCTest10XCTestCase10invokeTestfT_T + 112
    24 libXCTest.so 0x00007f6d389aa219 TTSf4g_n___TFC6XCTest10XCTestCase7performfCS_9XCTestRunT + 313
    25 libXCTest.so 0x00007f6d3899214e TFC6XCTest10XCTestCase7performfCS_9XCTestRunT + 14
    26 libXCTest.so 0x00007f6d38991f45 TFC6XCTest6XCTest3runfT_T + 629
    27 libXCTest.so 0x00007f6d389aaee5 TTSf4g_n___TFC6XCTest11XCTestSuite7performfCS_9XCTestRunT + 789
    28 libXCTest.so 0x00007f6d389ab3b3 TTSf4g_n___TFC6XCTest11XCTestSuite7performfCS_9XCTestRunT + 2019
    29 libXCTest.so 0x00007f6d389ab3b3 TTSf4g_n___TFC6XCTest11XCTestSuite7performfCS_9XCTestRunT + 2019
    30 libXCTest.so 0x00007f6d389976db _TF6XCTest7XCTMainFGSaT13testCaseClassMCS_10XCTestCase8allTestsGSaTSSFzS0_T_____Os5Never + 4283
    31 libXCTest.so 0x00007f6d3f1d60e9 _TF6XCTest7XCTMainFGSaT13testCaseClassMCS_10XCTestCase8allTestsGSaTSSFzS0_T_____Os5Never + 109312713
    32 swift 0x0000000000c795f2 llvm::MCJIT::runFunction(llvm::Function*, llvm::ArrayRefllvm::GenericValue) + 1042
    33 swift 0x0000000000c7d0ff llvm::ExecutionEngine::runFunctionAsMain(llvm::Function*, std::vector > const&, char const* const*) + 1215
    34 swift 0x000000000083ca6f swift::RunImmediately(swift::CompilerInstance&, std::vector > const&, swift::IRGenOptions&, swift::SILOptions const&) + 2303
    35 swift 0x00000000008364f8
    36 swift 0x0000000000831377 swift::performFrontend(llvm::ArrayRef, char const*, void*, swift::FrontendObserver*) + 2551
    37 swift 0x00000000007f8788 main + 3016
    38 libc.so.6 0x00007f6d3d60af45 __libc_start_main + 245
    39 swift 0x00000000007f5e56
    Stack dump:
    0. Program arguments: /swift-vol/swift-gen/usr/bin/swift -frontend -interpret /tmp/swift117613-18-kkw4k5.pcfkxfxbt9/solution.swift -target x86_64-unknown-linux-gnu -disable-objc-interop -module-name solution

  • Custom User Avatar

    Nice hint! Could use this in many other projects. Thanks!

  • Custom User Avatar

    func testSortedIntersectNoIntersectOne() {
    let first:Node? = buildListFromArray([2, 2, 3, 3, 4, 4, 4, 5])
    let second:Node? = buildListFromArray([8, 8, 8, 8, 8, 8, 8, 8])
    let result:Node? = SortedIntersect(first: first, second: second)
    printList(result)
    XCTAssertTrue(linkedListsEqual(first: result, second: buildListFromArray([2, 4, 5])))
    }
    }

    func testSortedIntersectNoIntersectTwo() {
    let first:Node? = buildListFromArray([2, 2, 3, 3, 4, 4, 4, 5])
    let second:Node? = buildListFromArray([1, 1, 1, 1, 1, 1, 1, 1])
    let result:Node? = SortedIntersect(first: first, second: second)
    printList(result)
    XCTAssertTrue(linkedListsEqual(first: result, second: buildListFromArray([2, 4, 5])))
    }
    }

    Could be added, since i recognized that my accepted solution would not pass these tests ;)

  • Custom User Avatar

    Actually sortedMerge() here is not doing what it is doing in the "Linked Lists - sorted Merge" exercise. There two lists are merged, sorted and the head of the new list is returned. Here sortedMerge() sometimes appends the first to the second and sometimes appends the second to the first list. Strange Behaviour :D

  • Custom User Avatar

    Amazing and clever solution! :) but wouldn't it make sense to split last line to:

    a.next = sortedMerge(first: a.next, second: b)
    return a

    Otherwise you are creating new instances of nodes as long as "first" and "second" aren't nil and as soon as one of them is nil you are recyling the old nodes.

    Anyway, best solution for this kata!

  • Custom User Avatar

    first time, i like my solution more than yours, tim ;) #imwatchingyou

  • Custom User Avatar

    Hey kazk, may you explain, how this exactly works?