photo

kai


Last seen: Today 2026년부터 활동

Followers: 0   Following: 0

통계

Cody

0 문제
199 답안

순위
N/A
of 302,098

평판
N/A

참여
0 질문
0 답변

답변 채택
0.00%

획득한 표
0

순위
 of 21,542

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위
738
of 178,932

참여
0 문제
199 답안

점수
2,907

배지 수
19

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Cody Problems in Japanese Master
  • CUP Challenge Master
  • Introduction to MATLAB Master
  • Community Group Solver
  • Solver

배지 보기

Feeds

보기 기준

문제를 풀었습니다


String Logic 6
Examples: 'CAT' --> 216 'DOG' --> 218 'ROSY' --> 333 'MATLAB' --> 433 'TRUST' --> 418 'MOSTLY' --> 488

2일 전

문제를 풀었습니다


String Logic 19
Examples: 'DIG' --> 'I' 'IMPORTANT' --> 'MOTN' 'DEAL' --> 'EL' 'LIMB' --> 'IB' 'MOSTLY' --> 'OTY'

2일 전

문제를 풀었습니다


Is A the inverse of B?
Given a matrix A and a matrix B, is A the inverse of B? >>A=[2,4;3,5]; >>B=[-2.5,2;1.5,-1]; >>isInverse...

2일 전

문제를 풀었습니다


Rotate Matrix @180 degree
Rotate Matrix @180 degree Example A=[8 1 6; 3 5 7; 4 9 2], then answer would be [2 9 4;...

2일 전

문제를 풀었습니다


Converts numbers into characters
Converts numbers into characters

2일 전

문제를 풀었습니다


Find the max element of the array
Find the max element of the array

2일 전

문제를 풀었습니다


Square root
Given x (a matrix), give back another matrix, where all the elements are the square roots of x's elements.

2일 전

문제를 풀었습니다


Calculate the average value of the elements in the array
Calculate the average value of the elements in the array

2일 전

문제를 풀었습니다


to the 2 all elements
to the 2 all elements

2일 전

문제를 풀었습니다


the average value of the elements
Calculate the average value of the elements in the array

2일 전

문제를 풀었습니다


Double all elements in the array
Duplicate all elements in the array

2일 전

문제를 풀었습니다


calculate the length of matrix
input 1 array, calculate the length

2일 전

문제를 풀었습니다


Draw a '0' in a one matrix!

2일 전

문제를 풀었습니다


Energy Conversion 2

4일 전

문제를 풀었습니다


Energy Conversion 1

4일 전

문제를 풀었습니다


Velocity Conversion
Given a velocity in mph, convert it to km/h. Round the answer to the fourth decimal place.

4일 전

문제를 풀었습니다


Area Conversion 2

4일 전

문제를 풀었습니다


Area Conversion 1

4일 전

문제를 풀었습니다


Mass Conversion 2

4일 전

문제를 풀었습니다


Mass Conversion 1

4일 전

문제를 풀었습니다


Temperature Conversion 3
Given a temperature in Celcius, convert it to Fahrenheit.

4일 전

문제를 풀었습니다


Temperature Conversion 2

4일 전

문제를 풀었습니다


Temperature Conversion 1

4일 전

문제를 풀었습니다


文字列の最初と最後の文字だけ抜き出しましょう。
文字列の最初と最後の文字をつなげて返すような関数を作成しましょう。 もし文字が一つしかない場合、その文字は最初と最後の文字のため、関数はその文字を二回返すようにしておきましょう。 例: stringfirstandlast('borin...

5일 전

문제를 풀었습니다


対称で、n*2n のサイズの行列を作成しましょう
サイズが n*2n の "mirror" 行列(対称行列)を作成しましょう。 例: n=2 の場合、以下のような出力を返します。 m = [ 1 2 2 1 1 2 2 1 ] n = 3 の場合、以下のよう...

5일 전

문제를 풀었습니다


英語の文章内の母音を取り除くコードを書きましょう。
与えられた英語の文章内の母音を取り除きましょう。 例: 入力 s1 が 'Jack and Jill went up the hill' の場合、 出力 s2 は 'Jck nd Jll wnt p th hll' * (英語版) ...

5일 전

문제를 풀었습니다


テレビのサイズを求めてみよう
あなたは電気屋で働いています。 あなたの電気屋にテレビを買いに来たお客さんに「何インチのテレビを買いたいのか」と質問したところ、対角線の情報しかわからないと言われてしまいました。 しかし、テレビのインチを知るには、幅と高さの情報が必要です。 ...

5일 전

문제를 풀었습니다


NaN (欠損値) が含まれている行を削除しよう
行列 A が与えられたとき、その行列の中に NaN (Not a number; 欠損値) の要素がある行を見つけ出し、その行を削除しましょう。 例: A = [ 1 5 8 -3 NaN 14 ...

5일 전

문제를 풀었습니다


特定の値がベクトル内に含まれているかを確認するコードを書こう
ベクトル b にあるスカラ値 a が含まれていれば出力として 1 を返し、含まれていなければ 0 を返すような関数を作成しましょう。 例: a = 3; b = [1,2,4]; スカラ値 3 はベクトル b に含まれていない...

5일 전

문제를 풀었습니다


ゼロでない要素が一番多い行を探そう
行列 a が与えられたとき、行列 a の中で一番ゼロの要素が少ない行のインデクス r を返す関数を作成しましょう。このとき、行列 a には一つだけしかこの条件に当てはまる行がないと仮定します。 例: 入力として、行列 a = [ 1 ...

5일 전

더 보기