-
Notifications
You must be signed in to change notification settings - Fork 3
/
code_challenge_examples.yml
2683 lines (2290 loc) · 66.7 KB
/
code_challenge_examples.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
csharp:
default: 'algorithms'
algorithms:
setup: |-
namespace Bank {
using System;
public class Account
{
private decimal balance;
public void Deposit(decimal amount)
{
}
public void Withdraw(decimal amount)
{
}
public void TransferFunds(Account destination, decimal amount)
{
}
public decimal Balance { get { return balance; } }
}
}
answer: |-
namespace Bank {
using System;
public class Account
{
private decimal balance;
public void Deposit(decimal amount)
{
balance += amount;
}
public void Withdraw(decimal amount)
{
balance -= amount;
}
public void TransferFunds(Account destination, decimal amount)
{
destination.Deposit(amount);
this.Withdraw(amount);
}
public decimal Balance { get { return balance; } }
}
}
fixture: |-
namespace Bank {
using NUnit.Framework;
using System;
[TestFixture]
public class AccountTest
{
[Test]
public void TransferFunds()
{
Account source = new Account();
source.Deposit(200m);
Account destination = new Account();
destination.Deposit(150m);
source.TransferFunds(destination, 100m);
Assert.AreEqual(250m, destination.Balance);
Assert.AreEqual(100m, source.Balance);
}
[Test]
public void CheckFunds()
{
Account source = new Account();
source.Deposit(200m);
Account destination = new Account();
destination.Deposit(150m);
Assert.AreEqual(200m, source.Balance);
}
}
}
javascript:
default: "algorithms"
algorithms:
setup: |-
// return the two oldest/oldest ages within the array of ages passed in.
// it should return the two ages as a sorted array, youngest age first
function twoOldestAges(ages){
}
answer: |-
function twoOldestAges(ages){
var oldest = 0, nextOldest;
for(var i = 0;i < ages.length;i++){
var age = ages[i];
if (age > oldest){
nextOldest = oldest;
oldest = age;
}
else if(age > nextOldest){
nextOldest = age;
}
}
return [nextOldest, oldest];
}
fixture: |-
const chai = require("chai");
const assert = chai.assert;
chai.config.truncateThreshold = 0;
describe("twoOldestAges", function() {
it("given [1,5,87,45,8,8]", function() {
assert.deepEqual(twoOldestAges([1, 5, 87, 45, 8, 8]), [45, 87]);
});
it("given [6,5,83,5,3,18]", function() {
assert.deepEqual(twoOldestAges([6, 5, 83, 5, 3, 18]), [18, 83]);
});
});
bug fixes:
setup: |-
function Person(name) {
this.name = name;
}
// TODO: The greet function is not returning the expected value.
Person.prototype.greet = function() {
return "Hello my name is " + name;
};
answer: |-
function Person(name) {
this.name = name;
}
Person.prototype.greet = function() {
return "Hello my name is " + this.name;
};
fixture: |-
const assert = require("chai").assert;
var jack = new Person("Jack");
var jill = new Person("Jill");
describe("Person", function() {
it(".name", function() {
assert.strictEqual(jack.name, "Jack", "person.name does not have a valid value");
});
it(".greet", function() {
assert.strictEqual(typeof jack.greet, "function", "greet method does not exist on the Person instance");
assert.strictEqual(jack.greet(), "Hello my name is Jack");
assert.strictEqual(jill.greet(), "Hello my name is Jill");
});
});
coffeescript:
default: "algorithms"
algorithms:
setup: |-
# return the two oldest/oldest ages within the array of ages passed in.
# it should return the two ages as a sorted array, youngest age first
twoOldestAges = (ages) ->
answer: |-
twoOldestAges = (ages) ->
oldest = 0
nextOldest = 0;
for age in ages
if age > oldest
nextOldest = oldest
oldest = age
else if age > nextOldest
nextOldest = age
[nextOldest, oldest]
fixture: |-
Test.describe "twoOldestAges([1,5,87,45,8,8])", ->
results1 = twoOldestAges [1,5,87,45,8,8]
Test.it "Should return something that isn't falsy", ->
Test.expect results1, "Something is wrong, twoOldestAges([1,5,87,45,8,8]) has no results!"
Test.it "Should return [45,87]", ->
Test.assertEquals results1[0], 45, "twoOldestAges([1,5,87,45,8,8]) should return 45 as the second highest result"
Test.assertEquals results1[1], 87, "twoOldestAges([1,5,87,45,8,8]) should return 87 as the second highest result"
Test.describe "twoOldestAges([6,5,83,5,3,18])", ->
results2 = twoOldestAges [6,5,83,5,3,18]
Test.assertSimilar results2, [18, 83]
ruby:
default: "algorithms"
algorithms:
setup: |-
# return the two oldest/oldest ages within the array of ages passed in.
# it should return the two ages as a sorted array, youngest age first
def two_oldest_ages(ages)
[]
end
answer: |-
def two_oldest_ages(ages)
oldest = 0
next_oldest = 0;
ages.each do |age|
if age > oldest
next_oldest = oldest
oldest = age
elsif age > next_oldest
next_oldest = age
end
end
[next_oldest, oldest]
end
fixture: |-
# From Ruby 3.0, RSpec is used under the hood. See https://rspec.info/
# Defaults to the global `describe` for backwards compatibility, but `RSpec.desribe` works as well.
describe "two_oldest_ages" do
it "returns the two oldest ages" do
# From Ruby 3.0, we're using RSpec under the hood.
expect(two_oldest_ages([1,5,87,45,8,8])).to eq([45,87])
expect(two_oldest_ages([6,5,83,5,3,18])).to eq([18,83])
# You'll see the following in the existing kata, but shouldn't be used for new ones.
# Test.assert_equals(two_oldest_ages([1,5,87,45,8,8]), [45,87])
# Test.assert_equals(two_oldest_ages([6,5,83,5,3,18]), [18,83])
end
end
python:
default: "algorithms"
algorithms:
setup: |-
# return the two oldest ages in the array of ages passed in.
# it should return the two ages as a sorted array, youngest age first
def two_oldest_ages(ages):
pass
answer: |-
def two_oldest_ages(ages):
oldest = 0
next_oldest = 0;
for age in ages:
if age > oldest:
next_oldest = oldest
oldest = age
elif age > next_oldest:
next_oldest = age
return [next_oldest, oldest]
fixture: |-
from solution import two_oldest_ages
import codewars_test as test
@test.describe("two_oldest_ages")
def tests():
# Use "it" to identify the conditions you are testing for
@test.it("should return the two oldest ages")
def test_second_oldest_first():
test.assert_equals(two_oldest_ages([1,5,87,45,8,8]), [45, 87])
test.assert_equals(two_oldest_ages([6,5,83,5,3,18]), [18, 83])
bug fixes:
setup: |-
def add(a, b):
a + b
answer: |-
def add(a, b):
return a + b
fixture: |-
from solution import add
import codewars_test as test
@test.describe('add')
def tests():
@test.it('should add both arguments and return')
def test_sum():
test.assert_equals(add(1, 2), 3)
test.assert_equals(add(1, 1), 2)
refactoring:
setup: |-
# refactor this method into a Person class with its own greet method
def greet(you, me):
return "Hello {0}, my name is {1}".format(you, me)
answer: |-
class Person:
def __init__(self, name):
self.name = name
def greet(self, name):
return "Hello {0}, my name is {1}".format(name, self.name)
fixture: |-
from solution import Person
import codewars_test as test
@test.describe('Person')
def tests():
@test.it('should have a name')
def test_name():
jack = Person('Jack')
test.assert_equals(jack.name, "Jack")
@test.it("should greet Jill")
def test_greet_jill():
jack = Person('Jack')
test.assert_equals(jack.greet("Jill"), "Hello Jill, my name is Jack")
@test.it("should greet other people as well")
def test_greet():
jack = Person('Jack')
test.assert_equals(jack.greet("Jane"), "Hello Jane, my name is Jack")
haskell:
default: "reference"
reference:
setup: |-
module Oldest where
-- | Return the two oldest/oldest ages within the array of ages passed in.
-- it should return the two ages as a sorted array, youngest age first
twoOldestAges :: [Integer] -> (Integer,Integer)
-- TODO: Write me
answer: |-
module Oldest where
import Data.List (sort)
-- | Return the two oldest/oldest ages within the array of ages passed in.
-- it should return the two ages as a sorted array, youngest age first
twoOldestAges :: [Integer] -> (Integer,Integer)
twoOldestAges ages =
let [b,a] = take 2 $ reverse $ sort $ ages
in (a,b)
fixture: |-
-- test module must end with `Spec`
module OldestSpec where
-- Hspec (https://hspec.github.io)
import Test.Hspec
import Text.Printf
import Oldest
-- test module must export `spec` of type `Spec`
spec :: Spec
spec = do
-- hspec lets you test your code in blocks, like RSpec
describe "twoOldestAges" $ do
-- hspec supports nested describe blocks
describe (show input1) $ do
-- Individual tests are specified with 'it'
it (printf "should return %s given %s as input" (show expected1) (show input1))
$ do
let (a,b) = twoOldestAges input1
-- You can test multiple things in an individual test if you want
a `shouldBe` fst expected1
b `shouldBe` snd expected1
describe (show input2) $ do
it (printf "should return %s given %s as input" (show expected2) (show input2))
$ do twoOldestAges input2 `shouldBe` expected2
where
input1 = [1,5,87,45,8,8]
expected1 = (45,87)
input2 = [6,5,83,5,3,18]
expected2 = (18,83)
clojure:
default: "reference"
reference:
setup: |-
(ns oldest)
(defn two-oldest-ages
"Returns the two oldest ages"
;; TODO: Program me
)
answer: |-
(ns oldest)
(defn two-oldest-ages
"Returns the two oldest ages"
[ages]
(->> ages
sort
reverse
(take 2)
reverse))
fixture: |-
(ns oldest-test
(:require [clojure.test :refer :all]
[oldest :refer [two-oldest-ages]]))
(deftest basic-test
(let [input1 [1 5 87 45 8 8]
input2 [6 5 83 5 3 18]]
(testing (str "input1: " input1)
(is (= (two-oldest-ages input1) [45 87])))
(testing (str "input2: " input2)
(is (= (two-oldest-ages input2) [18 83])))))
java:
default: "reference"
reference:
setup: |-
public class Person {
String name;
public Person(String personName) {
// TODO: Program Constructor
}
public String greet(String yourName) {
// TODO: Write a greeting string
}
}
answer: |-
public class Person {
String name;
public Person(String personName) {
name = personName;
}
public String greet(String yourName) {
return String.format("Hello %s, I'm %s.", yourName, this.name);
}
}
fixture: |-
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
class PersonTest {
@Test
void testGreet() {
Person jack = new Person("Jack");
assertEquals("Hello Jill, I'm Jack.", jack.greet("Jill"));
}
}
elixir:
default: algorithms
algorithms:
setup: |-
defmodule AgeUtils do
# return the two oldest/oldest ages within the array of ages passed in.
# it should return the two ages as a sorted array, youngest age first
def two_oldest_ages(ages) when is_list(ages) do
end
end
answer: |-
defmodule AgeUtils do
def two_oldest_ages(ages) when is_list(ages) do
ages |> Enum.sort |> Enum.reverse |> Enum.take(2) |> Enum.reverse
end
end
fixture: |-
defmodule TestAgeUtils do
use ExUnit.Case
test "returns correct ages for different lists" do
results1 = AgeUtils.two_oldest_ages([1,5,87,45,8,8])
results2 = AgeUtils.two_oldest_ages([6,5,83,5,3,18])
assert results1 == [45, 87]
assert results2 == [18, 83]
end
end
bug_fixes:
setup: |-
defmodule Person do
defstruct name: nil
#TODO: The greet function is not returning the expected value.
def greet(person) when is_map(person) do
"Hello my name is #{person["name"]}"
end
end
answer: |-
defmodule Person do
defstruct name: nil
def greet(person) when is_map(person) do
"Hello my name is #{person.name}"
end
end
fixture: |-
defmodule TestPerson do
use ExUnit.Case
test "greets any proper Person" do
jack = %Person{name: "Jack"}
jill = %Person{name: "Jill"}
assert Person.greet(jack) == "Hello my name is Jack"
assert Person.greet(jill) == "Hello my name is Jill"
end
end
refactoring:
setup: |-
defmodule Person do
defstruct name: nil
# TODO: This method needs to be called multiple times for the same person (my_name).
# It would be nice if we didnt have to always pass in my_name every time we needed to great someone.
def greet(my_name, your_name) do
"Hello #{your_name}, my name is #{my_name}"
end
end
answer: |-
defmodule Person do
defstruct name: nil
def greet(person, your_name) do
"Hello #{your_name}, my name is #{person.name}"
end
end
fixture: |-
defmodule TestPerson do
use ExUnit.Case
test "greets any proper Person" do
jack = %Person{name: "Jack"}
jill = %Person{name: "Jill"}
assert Person.greet(jack, "Jill") == "Hello Jill, my name is Jack"
assert Person.greet(jack, "Mary") == "Hello Mary, my name is Jack"
assert Person.greet(jill, "Jack") == "Hello Jack, my name is Jill"
end
end
reference:
setup: |-
defmodule WebSite do
def websites, do: []
end
answer: |-
defmodule WebSite do
# add the values "codewars" to the websites list
def websites, do: ["codewars"]
end
fixture: |-
defmodule TestWebSite do
use ExUnit.Case
test "websites returns proper list" do
assert is_list(WebSite.websites) == true
assert length(WebSite.websites) == 1
assert WebSite.websites == ["codewars"]
end
end
typescript:
default: algorithms
algorithms:
setup: |-
// return the two oldest/oldest ages within the array of ages passed in.
// it should return the two ages as a sorted array, youngest age first
export function twoOldestAges(ages: number[]): number[] {
}
answer: |-
export function twoOldestAges(ages: number[]): number[] {
let oldest = 0;
let nextOldest = 0;
for (let i = 0; i < ages.length; i++) {
const age = ages[i];
if (age > oldest) {
nextOldest = oldest;
oldest = age;
}
else if (age > nextOldest) {
nextOldest = age;
}
}
return [nextOldest, oldest];
}
fixture: |-
import { assert } from "chai";
import { twoOldestAges } from "./solution";
describe("twoOldestAges([1,5,87,45,8,8])", function() {
const results1 = twoOldestAges([1, 5, 87, 45, 8, 8]);
it("Should return something that isn't falsy", function() {
assert.isOk(results1);
});
it("Should return [45,87]", function() {
assert.deepEqual(results1, [45, 87]);
});
});
dart:
default: 'algorithms'
algorithms:
setup: |-
// Return the two oldest/oldest ages within the array of ages passed in.
// it should return the two ages as a sorted array, youngest age first
twoOldestAges(ages){
// Your code here...
}
answer: |-
twoOldestAges(ages){
var oldest = 0, nextOldest;
for(var i = 0;i < ages.length;i++) {
var age = ages[i];
if (age > oldest){
nextOldest = oldest;
oldest = age;
}
else if(age > nextOldest){
nextOldest = age;
}
}
return [nextOldest, oldest];
}
fixture: |-
import "package:test/test.dart";
import "package:solution/solution.dart";
void main() {
test('Should return [45,87]', () {
expect(twoOldestAges([1, 5, 87, 45, 8, 8]), equals([45,87]));
});
}
bug fixes:
setup: |-
class Person {
String _name;
Person(this._name);
//TODO: The greet method is not returning the expected value.
greet() => 'Hello my name is _name';
}
answer: |-
class Person {
String _name;
Person(this._name);
//TODO: The greet method is not returning the expected value.
greet() => 'Hello my name is $_name';
}
fixture: |-
import "package:test/test.dart";
import "package:solution/solution.dart";
void main() {
test('Greet is correct', () {
var jack = new Person('Jack');
var jill = new Person('Jill');
expect(jack.greet(),equals('Hello my name is Jack'));
expect(jill.greet(),equals('Hello my name is Jill'));
});
}
refactoring:
setup: |-
// TODO: This method needs to be called multiple times for the same person (myName).
// It would be nice if we didnt have to always pass in myName every time we needed to great someone.
greet(myName, yourName) {
return 'Hello $yourName, my name is $myName';
}
answer: |-
class Person {
var _name;
Person(this._name);
greet(yourName) => 'Hello $yourName, my name is $_name';
}
reference:
setup: |-
var websites = [];
answer: |-
// add the values "codewars" to the websites array
var websites = ['codewars'];
fixture: |-
import "package:test/test.dart";
import "package:solution/solution.dart";
void main() {
test('Codewars is in the array', () {
expect(websites.length, greaterThan(0));
expect(websites.length, equals(1));
expect(websites[0], equals('codewars'));
});
}
cpp:
default: 'algorithms'
algorithms:
setup: |-
#include <list>
using namespace std;
// return the two oldest/oldest ages within the array of ages passed in.
// it should return the two ages as a sorted array, youngest age first
list<int> two_oldest_ages(list<int> ages) {
}
answer: |-
#include <list>
#include <iostream>
using namespace std;
list<int> two_oldest_ages(list<int> ages) {
int oldest = 0, nextOldest;
for(auto& age:ages) {
if(age > oldest) {
nextOldest = oldest;
oldest = age;
}
else if(age > nextOldest) {
nextOldest = age;
}
}
return list<int> {nextOldest, oldest};
}
fixture: |-
list<int> results = two_oldest_ages({ 1, 5, 87, 45, 8, 8 });
Describe(two_oldest_ages_test)
{
It(should_return_the_oldest)
{
Assert::That(results.front(), Equals(45));
}
It(thing_inherit_from_base)
{
Assert::That(results.back(), Equals(87));
}
};
bug fixes:
setup: |-
struct Entity {
int run() {
return speed;
}
int speed = 5;
};
// TODO: player.run() returning 5 instead of 10!
struct Player: public Entity {
int speed = 10;
};
answer: |-
struct Entity {
int run() {
return speed();
}
virtual int speed() {
return 5;
}
};
struct Player: public Entity {
virtual int speed() {
return 10;
}
};
fixture: |-
Entity e;
Player p;
Describe(entity)
{
It(should_run_at_speed_5) {
Assert::That(e.run(), Equals(5));
}
};
Describe(player)
{
It(should_run_at_speed_10) {
Assert::That(p.run(), Equals(10));
}
};
php:
default: algorithms
bug fixes:
setup: |-
<?php
multiply(a, b) {
a * b
}
answer: |-
<?php
function multiply($a, $b) {
return $a * $b;
}
fixture: |-
<?php
use PHPUnit\Framework\TestCase;
class MultiplyTest extends TestCase
{
public function testMultiply() {
$this->assertEquals(multiply(1, 1), 1);
$this->assertEquals(multiply(2, 3), 6);
$this->assertEquals(multiply(3, 2), 6);
$this->assertEquals(multiply(3, 5), 15);
$this->assertEquals(multiply(5, 3), 15);
$this->assertEquals(multiply(4, 7), 28);
$this->assertEquals(multiply(7, 4), 28);
}
}
algorithms:
setup: |-
<?php
// return the two oldest/oldest ages within the array of ages passed in.
// it should return the two ages as a sorted array, youngest age first
function twoOldestAges(ages){
}
answer: |-
<?php
function twoOldestAges($ages){
$oldest = 0;
$nextOldest;
for($i = 0; $i < count($ages); $i++){
$age = $ages[$i];
if ($age > $oldest){
$nextOldest = $oldest;
$oldest = $age;
}
elseif ($age > $nextOldest){
$nextOldest = $age;
}
}
return [$nextOldest, $oldest];
}
fixture: |-
<?php
use PHPUnit\Framework\TestCase;
class TwoOldestAgesTest extends TestCase
{
public function testAlgorithm() {
$results1 = twoOldestAges([1, 5, 87, 45, 8, 8]);
$this->assertEquals($results1[0], 45);
$this->assertEquals($results1[1], 87);
$results2 = twoOldestAges([6, 5, 83, 5, 3, 18]);
$this->assertEquals($results2, [18, 83]);
}
}
julia:
default: algorithms
algorithms:
setup: |-
module AgeUtils
export two_oldest_ages
# return the two oldest/oldest ages within the array of ages passed in.
# it should return the two ages as a sorted array, youngest age first
function two_oldest_ages(ages)
# TODO: complete
end
end
answer: |-
module AgeUtils
export two_oldest_ages
function two_oldest_ages(ages)
return collect(Iterators.drop(sort(ages), length(ages) - 2))
end
end
fixture: |-
using FactCheck
using AgeUtils
facts("AgeUtils") do
context("two_oldest_ages") do
@fact two_oldest_ages([1,5,87,45,8,8]) --> [45,87]
@fact two_oldest_ages([6,5,83,5,3,18]) --> [18,83]
end
end
crystal:
default: algorithms
algorithms:
setup: |-
# return the two oldest/oldest ages within the array of ages passed in.
# it should return the two ages as a sorted array, youngest age first
def two_oldest_ages(ages)
end
answer: |-
def two_oldest_ages(ages)
oldest = 0
next_oldest = 0;
ages.each do |age|
if age > oldest
next_oldest = oldest
oldest = age
elsif age > next_oldest
next_oldest = age
end
end
[next_oldest, oldest]
end
fixture: |-
results1 = two_oldest_ages [1,5,87,45,8,8]
results2 = two_oldest_ages [6,5,83,5,3,18]
describe "two_oldest_ages" do
it "should return the two oldest ages" do
results1[0].should eq 45
results1[1].should eq 87
results2[0].should eq 18
results2[1].should eq 83
end
end
rust:
default: algorithms
algorithms:
setup: |-
// Return the pair of two oldest ages, the younger first.
// Return `None` there are less than 2 ages.
pub fn two_oldest_ages(ages: &[u8]) -> Option<(u8, u8)> {
None
}
answer: |-
pub fn two_oldest_ages(ages: &[u8]) -> Option<(u8, u8)> {
if ages.len() < 2 {
return None;
}
let (mut next, mut oldest) = if ages[0] < ages[1] {
(ages[0], ages[1])
} else {
(ages[1], ages[0])
};
for age in ages.iter().skip(2) {
if *age > oldest {
next = oldest;
oldest = *age;
} else if *age > next {
next = *age;
}
}
Some((next, oldest))
}
fixture: |-
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn returns_oldest() {
assert_eq!(two_oldest_ages(&[1, 5, 87, 45, 8, 8]), Some((45, 87)));
}
}
fsharp:
default: reference
reference:
setup: |
module ExampleKata