Резултат от курса по Мултиплатформени мобилни приложения с NativeScript:
- Взет с отличие!
- Точки: 100
- Място: 1
- Февруари – 2016
Резултат от курса по Мултиплатформени мобилни приложения с NativeScript:
Ето го и резултатът от изпита по End-to-end JavaScript Applications (Node.js):
Решение на задачата на сутрешната група на изпита по JavaScript OOP
// item.js
define(function() {
'use strict';
var Item;
Item = (function() {
var types = ['accessory', 'smart-phone', 'notebook', 'pc', 'tablet'];
function Item(type, name, price) {
if (types.indexOf(type) == -1) {
throw "invalid item type";
};
if (name.length < 6 || name.length > 40) {
throw "invalid item name";
};
if (price < 0.0) {
throw "invalid item price";
};
this.type = type;
this.name = name;
this.price = price;
}
return Item;
})();
return Item;
});
// store.js
define(function() {
'use strict';
var Store;
Store = (function() {
function Store(storeName) {
if (storeName.length < 6 || storeName.length > 40) {
throw "invalid store name";
}
this._name = storeName;
this._items = [];
};
Store.prototype.addItem = function(item) {
if (item.constructor.name !== "Item") {
throw "invalid item type";
}
this._items.push(item);
return this;
};
Store.prototype.getAll = function() {
var sortedItems = compareBy(this._items, "name");
return sortedItems;
};
Store.prototype.getSmartPhones = function() {
var items = [];
this._items.forEach(function(item) {
if (item.type === 'smart-phone') {
items.push(item);
}
});
var sortedItems = compareBy(items, "name");
return sortedItems;
};
Store.prototype.getMobiles = function() {
var items = [];
this._items.forEach(function(item) {
if (item.type === 'smart-phone' || item.type === 'tablet') {
items.push(item);
}
});
var sortedItems = compareBy(items, "name");
return sortedItems;
};
Store.prototype.getComputers = function() {
var items = [];
this._items.forEach(function(item) {
if (item.type === 'pc' || item.type === 'notebook') {
items.push(item);
}
});
var sortedItems = compareBy(items, "name");
return sortedItems;
};
Store.prototype.filterItemsByType = function(type) {
var items = [];
this._items.forEach(function(item) {
if (item.type === type) {
items.push(item);
}
});
var sortedItems = compareBy(items, "name");
return sortedItems;
};
Store.prototype.filterItemsByPrice = function(options) {
var minPrice = 0;
var maxPrice = 999999999.99;
var items = [];
if (options) {
minPrice = options.min || minPrice;
maxPrice = options.max || maxPrice;
}
this._items.forEach(function(item) {
if (item.price >= minPrice && item.price <= maxPrice) {
items.push(item);
}
});
var sortedItems = compareBy(items, "price");
return sortedItems;
};
Store.prototype.countItemsByType = function() {
var itemTypes = [];
for (var i = 0; i < this._items.length; i++) {
if (itemTypes[this._items[i].type]) {
itemTypes[this._items[i].type]++;
} else {
itemTypes[this._items[i].type] = 1;
}
}
return itemTypes;
};
Store.prototype.filterItemsByName = function(part) {
var items = [];
this._items.forEach(function(item) {
if (item.name.toLowerCase().indexOf(part.toLowerCase()) >= 0) {
items.push(item);
}
});
var sortedItems = compareBy(items, "name");
return sortedItems;
};
function compareBy(data, field) {
data.sort(function(a, b) {
if (a[field] < b[field]) return -1;
if (a[field] > b[field])
return 1;
return 0;
});
return data;
};
return Store;
})();
return Store;
});
Изпит: JavaScript UI и DOM
Точки на изпит: 180 от 200
Резултат:
Взет с отличие!
Точки: 53.00
Място: 293
180 от 200 на изпита по JavaScript UI и DOM
Новото оценяване с peer review изглежда, че работи 🙂
Решението на най-лесната задача от изпита по JavaScript UI и DOM.
Handlesbars.js
<script id="authors-template" type='text/x-handlebars-template'> {{#authors}} <div class="box {{#if right}}right{{/if}}"> <div class="inner"> <p><img alt="{{name}}" src="{{image}}" width="100" height="133"></p> <div> <h3>{{name}}</h3> {{#each titles}} <p>{{{this}}}</p> {{/each}} <ul> {{#each urls}} <li><a href="{{this}}" target="_blank">{{this}}</a></li> {{/each}} </ul> </div> </div> </div> {{/authors}} </script>
Лошото класиране след изпита по JavaScript основи не се дължи само на липсата на проверени домашни работи, но а и на подготовката преди самия изпит! От решени 4 задачи предните два дни – толкова! 🙂
Това е решението на първата задача от изпита по JavaScript основи, проведен на 19 май 2014 година в Телерик Академия.
В задачата се иска да се намерят всички възможни варианти на автомобили, камиони и триколки, на които сумата на гумите да е равен на определено число.
Решението на задачата е само с цикли, без рекурсия. Използват се комбинации.
function findPermutations(n) {
var tires = [3, 4, 10];
var buffer = new Array(n + 1);
for (var i = 0; i <= n; ++i)
buffer[i] = new Array(tires.length + 1);
for (var j = 1; j <= tires.length; ++j)
buffer[0][j] = 1;
for (i = 1; i <= n; ++i) {
buffer[i][0] = 0;
for (j = 1; j <= tires.length; ++j) {
var value = buffer[i][j − 1];
if (tires[j − 1] <= i)
value += buffer[i − tires[j − 1]][j];
buffer[i][j] = value;
}
}
return buffer[n][tires.length];
}
Това е бонус задачата от изпита по JavaScript в Телерик Академия, проведен на 19 май 2014 година.
Задачата се казва Cartesian Coordinate System и е решена с 51 символа при условие, изискващо решение до 54 символа на кода.
Изпитът по JavaScript приключи с почти задоволителен резултат – 225 от 300 точки.
Разпределението по задачи е следното: първа задача – 100 от 100; втора задача – 100 от 100; трета задача – 0 от 100; бонус задача – 25 от 25. Общ брой точки – 225.