Matt Tearle
Followers: 0 Following: 0
Estadística
1 Pregunta
624 Respuestas
12 Archivos
Cody23 Problemas
97 Soluciones
CLASIFICACIÓN
73
of 295.448
REPUTACIÓN
2.097
CONTRIBUCIONES
1 Pregunta
624 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.0%
VOTOS RECIBIDOS
526
CLASIFICACIÓN
836 of 20.227
REPUTACIÓN
2.205
EVALUACIÓN MEDIA
4.60
CONTRIBUCIONES
12 Archivos
DESCARGAS
70
ALL TIME DESCARGAS
18835
CLASIFICACIÓN
1.093
of 153.872
CONTRIBUCIONES
23 Problemas
97 Soluciones
PUNTUACIÓN
1.968
NÚMERO DE INSIGNIAS
17
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
1 Público Canal
EVALUACIÓN MEDIA
70
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Problema
Cricket - Is It LBW?
LBW has an unfair reputation as complicated. But if you've watched a third umpire referral, you'll know that it's just a logical...
alrededor de 2 años hace | 1 | 13 solvers
Problema
Cricket - Report the Result (Part II: Test Matches)
Given two scalar strings representing the scores for a test match, return a string reporting the result in the appropriate form:...
alrededor de 2 años hace | 1 | 10 solvers
Problema
Cricket - You Miss, I Hit (Rank Bowlers by Proportion of Bowled and LBW Wickets)
Which bowlers threaten your stumps the most? Given a table of all wickets taken during some particular set of matches and two th...
alrededor de 2 años hace | 3 | 13 solvers
Problema
Cricket - Most Frequent Bowler-Batter Wicket Combinations
Given a table representing all wickets taken in a particular set of matches, return a table of the bowler-batter pairs that occu...
alrededor de 2 años hace | 1 | 18 solvers
Problema
Cricket - Report the Result (Part I: Limited Overs)
Given two scalar strings representing the scores for a limited-overs match, return a string reporting the result in the form "Te...
alrededor de 2 años hace | 1 | 24 solvers
Problema
Cricket - Peak Batting Average
Given a vector s of strings representing a batter's individual innings scores (in chronological order), return the highest batti...
alrededor de 2 años hace | 1 | 26 solvers
Problema
Cricket - Represent Average in "Dulkars" and "Ses"
Sachin Tendulkar's Test average was 53.78. So if Tendulkar = 53.78, one dulkar = 5.378. Similarly, Roger Twose's average was 25....
alrededor de 2 años hace | 1 | 26 solvers
Problema
Cricket - Career Bowling Statistics
Given a vector s of strings representing a bowler's individual innings records, return their career statistics as a 3-element (n...
alrededor de 2 años hace | 1 | 26 solvers
Problema
Cricket - Career Batting Statistics
Given a vector s of strings representing a batter's individual innings scores, return their career statistics as a 4-element (nu...
alrededor de 2 años hace | 1 | 32 solvers
Problema
Cricket - How Much More to Beat Bradman?
Sir Don Bradman famously needed only 4 runs in his final innings to retire with an average of 100. Out for a duck, he ended inst...
alrededor de 2 años hace | 1 | 50 solvers
Problema
Cricket - Average Partnership Contribution
The (infamous) Duckworth-Lewis method uses statistical models of how much each wicket partnership is worth to an innings (on ave...
alrededor de 2 años hace | 2 | 33 solvers
Problema
Cricket - Sort Batters by Distance Run
Given a string vector of batters' names, a vector of the total number of runs they scored, a vector of the number of 4s they sco...
alrededor de 2 años hace | 2 | 76 solvers
Resuelto
Find Closest Constant
Given a number x, return the value that is closest to x from this list of constants: 0, 1, , e, , (also known as ). For exampl...
alrededor de 2 años hace
Resuelto
Triangle Coordinates
Given a natural number n, return two -element vectors, x and y, containing the coordinates of a triangular arrangement of points...
alrededor de 2 años hace
Resuelto
Angle Between Analog Clock Hands
Given a datetime variable t, return the angle (in degrees) between the hour and minute hands of an analog clock at the time repr...
alrededor de 2 años hace
Resuelto
Boustrophedon
Given a vector v and a positive integer n, return an m-by-n matrix containing the elements of v row-wise, alternating left-to-ri...
alrededor de 2 años hace
Resuelto
Create block matrix of integers (j+k-1) - Part II
Given m, n, p, and q, create an m-by-n matrix made up of submatrices, each sized p-by-q (if possible - the last row and column o...
alrededor de 2 años hace
Resuelto
Create block matrix of integers (j+k-1) - Part I
Given m, n, p, and q, create a matrix of m-by-n blocks (submatrices), each sized p-by-q. The elements of the (j,k)th block all h...
alrededor de 2 años hace
Resuelto
Dartboard Average II
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...
alrededor de 2 años hace
Resuelto
Dartboard Average I
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...
alrededor de 2 años hace
Resuelto
Possible Rugby Scores
Given a natural number s (> 4), representing a rugby team's score, return an n-by-3 matrix representing all n possible combinati...
alrededor de 2 años hace
Resuelto
Split Even Number Into Two Primes
Given an even whole number n (> 2), return a 2-element vector of primes, p, such that p(1) + p(2) = n. Fun note: technically it...
alrededor de 2 años hace
Resuelto
Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or...
alrededor de 2 años hace
Resuelto
Extract the Acrostic Message
An acrostic cipher is a way of embedding one message within another by taking the first (or last) word of each line. Given a str...
alrededor de 2 años hace
Problema
Angle Between Analog Clock Hands
Given a datetime variable t, return the angle (in degrees) between the hour and minute hands of an analog clock at the time repr...
alrededor de 2 años hace | 3 | 98 solvers
Problema
Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or...
alrededor de 2 años hace | 8 | 298 solvers
Problema
Create block matrix of integers (j+k-1) - Part II
Given m, n, p, and q, create an m-by-n matrix made up of submatrices, each sized p-by-q (if possible - the last row and column o...
alrededor de 2 años hace | 2 | 87 solvers
Problema
Create block matrix of integers (j+k-1) - Part I
Given m, n, p, and q, create a matrix of m-by-n blocks (submatrices), each sized p-by-q. The elements of the (j,k)th block all h...
alrededor de 2 años hace | 4 | 107 solvers
Problema
Dartboard Average II
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...
alrededor de 2 años hace | 1 | 101 solvers
Problema
Dartboard Average I
A dartboard arranges the numbers 1 to 20 such that each value is typically flanked by quite different values - for example, 20 i...
alrededor de 2 años hace | 3 | 152 solvers