mike-ravkine
commited on
Commit
·
1c8a568
1
Parent(s):
d59e4fc
Upload interview.csv
Browse files- interview.csv +25 -0
interview.csv
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name,language,prompt
|
2 |
+
SanityMeaningOfLife-python,python,"Write a python function meaning_of_life() that returns a single integer, the answer to life the universe and everything"
|
3 |
+
SanityMeaningOfLife-javascript,javascript,"Write a javascript function meaning_of_life() that returns a single integer, the answer to life the universe and everything"
|
4 |
+
SanityList-python,python,"Write a python function things() that returns a list with three values: the number 5, the string 'foobar', the capital city of Spain."
|
5 |
+
SanityList-javascript,javascript,"Write a javascript function things() that returns a list with three values: the number 5, the string 'foobar', the capital city of Spain."
|
6 |
+
SanitySecretIdentityMap-python,python,"Write a python function secretidentities() that returns an object mapping the superheroes Superman, Batman and Spiderman to their real names."
|
7 |
+
SanitySecretIdentityMap-javascript,javascript,"Write a javascript function secretidentities() that returns an object mapping the superheroes Superman, Batman and Spiderman to their real names."
|
8 |
+
GCDZeroShot-python,python,Write a python function to compute the greatest common demoninator (gcd) of two input integers a and b.
|
9 |
+
GCDZeroShot-javascript,javascript,Write a javascript function to compute the greatest common demoninator (gcd) of two input integers a and b.
|
10 |
+
GCDMisnamed-python,python,"Write a python function fofx(x: int, banana: int) to compute the greatest common demoninator of two input integers x and banana."
|
11 |
+
GCDMisnamed-javascript,javascript,"Write a javascript function fofx(x, banana) to compute the greatest common demoninator of two input integers x and banana."
|
12 |
+
FactorialZeroShot-python,python,Write a python function to compute the factorial of input n.
|
13 |
+
FactorialZeroShot-javascript,javascript,Write a javascript function to compute the factorial of input n.
|
14 |
+
FactorialRecursiveZeroShot-python,python,Write a python function to compute the factorial of input n using recursion.
|
15 |
+
FactorialRecursiveZeroShot-javascript,javascript,Write a javascript function to compute the factorial of input n using recursion.
|
16 |
+
FactorialMisnamed-python,python,Write a python function glork(bork: int) to compute the factorial of input bork.
|
17 |
+
FactorialMisnamed-javascript,javascript,Write a javascript function glork(bork) to compute the factorial of input bork.
|
18 |
+
FibonacciZeroShot-python,python,Write a python function to compute the fibbonaci sequence of length n.
|
19 |
+
FibonacciZeroShot-javascript,javascript,Write a javascript function to compute the fibbonaci sequence of length n.
|
20 |
+
FibonacciListZeroShot-python,python,Write a python function that returns a list with the first n elements of the fibbonaci sequence.
|
21 |
+
FibonacciListZeroShot-javascript,javascript,Write a javascript function that returns a list with the first n elements of the fibbonaci sequence.
|
22 |
+
FibonacciMisnamed-python,python,Write a python function glork(bork) to compute the fibbonaci sequence of length bork.
|
23 |
+
FibonacciMisnamed-javascript,javascript,Write a javascript function glork(bork) to compute the fibbonaci sequence of length bork.
|
24 |
+
StringCountTokens-python,python,"Write a python function substrcount(str, substr) that counts the number of times the sub-string `substr` occurs in `str` and returns it"
|
25 |
+
StringCountTokens-javascript,javascript,"Write a javascript function substrcount(str, substr) that counts the number of times the sub-string `substr` occurs in `str` and returns it"
|