-
Notifications
You must be signed in to change notification settings - Fork 83
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lab. 1
, Lab. 2
_and_ Lab. 3
is done.
#17
Lab. 1
, Lab. 2
_and_ Lab. 3
is done.
#17
Conversation
Hello Eugeny Sergeevich. I have merged your fixes. |
Hello again. I have did |
Lab. 1
_and_ Lab. 2
done.Lab. 1
, Lab. 2
_and_ Lab. 3
is done.
.gitignore
Outdated
@@ -0,0 +1,130 @@ | |||
# Logs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
он тут не нужен
package-lock.json
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
его и node_modules рядом надо удалить
package.json
Outdated
@@ -0,0 +1,5 @@ | |||
{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
этот тоже удаляем
rpgsaga/saga/.gitignore
Outdated
@@ -0,0 +1,130 @@ | |||
# Logs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
в каталоге выше был gitignore
rpgsaga/saga/src/lab1/funcs.ts
Outdated
const arr = new Array<number>(itemCount); | ||
let xCurrent = xStart; | ||
let index = 0; | ||
while (xCurrent < xEnd) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for ?
rpgsaga/saga/src/lab1/funcs.ts
Outdated
|
||
export function calculatePoints(a: number, b: number, xes: Array<number>): Array<number> { | ||
const results: Array<number> = new Array<number>(xes.length); | ||
for (const index in xes) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
for (const index in xes) { | |
for (const index of xes) { |
import * as pointEngine from '../../src/lab1/funcs'; | ||
|
||
// Let test our task. | ||
it('should be empty if end >= start.', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
объедините в describe
Hello, Eugeny Sergeevich. I've applied all of the remarks. I hope it's all right. |
private _birthDate: Date; | ||
|
||
constructor(name: string, birthdate: Date, color: string) { | ||
this._name = name; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this._name = name; | |
this.name = name; |
|
||
constructor(name: string, birthdate: Date, color: string) { | ||
this._name = name; | ||
this._birthDate = birthdate; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this._birthDate = birthdate; | |
this.birthDate = birthdate; |
Hello, Eugeny Sergeevich. I'm Kozlov Egor, student of 2/278 group.
I want to say that I have written all CodeWars tasks. Also made TS laboratory with Unit tests.
At CodeWars I've used different languages:
Is everything did OK? I'm waiting for a feedback. Thank you and have a nice day!