photo

Andrey Kiselnikov


Quantenna

Last seen: 1 year ago Active since 2019

Followers: 0   Following: 0

Message

Programming Languages:
Python
Spoken Languages:
English
Pronouns:
Any pronouns

Statistics

All
MATLAB Answers

1 Question
33 Answers

File Exchange

10 Files

Cody

0 Problems
7 Solutions

RANK
1,176
of 297,503

REPUTATION
62

CONTRIBUTIONS
1 Question
33 Answers

ANSWER ACCEPTANCE
100.0%

VOTES RECEIVED
7

RANK
3,783 of 20,449

REPUTATION
392

AVERAGE RATING
4.60

CONTRIBUTIONS
10 Files

DOWNLOADS
37

ALL TIME DOWNLOADS
3630

RANK
42,720
of 159,017

CONTRIBUTIONS
0 Problems
7 Solutions

SCORE
90

NUMBER OF BADGES
2

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 3
  • Revival Level 1
  • Promoter
  • Solver
  • 5-Star Galaxy Level 3
  • GitHub Submissions Level 1
  • Personal Best Downloads Level 3
  • First Review
  • First Submission
  • Thankful Level 1
  • 3 Month Streak
  • Knowledgeable Level 2

View badges

Feeds

View by

Solved


Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...

6 years ago

Solved


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

6 years ago

Solved


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

6 years ago

Solved


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

6 years ago

Solved


Octoberfest festival
A group of students decided to visit Octoberfest festival. First they ordered one beer, then after half-hour they taken one more...

6 years ago

Solved


Is it really a 5?
A number containing at least one five will be passed to your function, which must return true or false depending upon whether th...

6 years ago

Solved


Find common elements in matrix rows
Given a matrix, find all elements that exist in every row. For example, given A = 1 2 3 5 9 2 5 9 3 2 5 9 ...

6 years ago