This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Diagnostics; | |
namespace Tests | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
Stopwatch s = new Stopwatch(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Reflection; | |
namespace Tests | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Fraction | |
{ | |
private int[] _decimalDigits; | |
private int _cycleStart; | |
private static int GCD(int a, int b) | |
{ | |
if (a % b == 0) | |
{ | |
return b; |
Представьте, что каждый сотрудник компании имеет свою страницу на внутреннем корпоративном сайте. На каждой странице должен появится список с ачивками – знаками сотрудника о каких-то достижениях.
Сверстайте шаблон для списка ачивок без применения SVG для оформления. Ачивки могут быть со счетчиком.