A
Anonymous
Қаз. 9, 2020, 2:22 Т.Қ.

def moveZeroes(self, nums):
    """
    :type nums: List[int]
    :rtype: None Do not return anything, modify nums in-place instead.
    """
    if len(nums) < 2:
        return

    count_ite
M
Қаз. 8, 2020, 11:46 Т.Қ.

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
	setlocale(LC_ALL, "ukr");
	double r, u, x, y;
	cout << "Введiть координати:\nX="; cin >> x; cout << "\nY="; cin >> y;
P
Қаз. 2, 2020, 5:18 Т.Қ.

Repeater {
    id: elements
    delegate: Switch {
}
BlinCT
Қыр. 22, 2020, 2:36 Т.Қ.

int min(int a, int b)
{
    if(a < b)
        return a;
    else
        return b;
}
ач
Қыр. 16, 2020, 10:12 Т.Қ.

export function openingStoryEditorBridge (dataStory, idContest=false) {
    console.log(dataStory.buttonStory)
    return bridge.send("VKWebAppShowStoryBox", {
        "background_type": `${dataSto
ач
Қыр. 16, 2020, 1:08 Т.Қ.

public static function getDataUsers($idsUsers) {
		global $config;

		// получаем данные узеров
		$request_params = array(
			'user_ids' => implode(',', $idsUsers),
			'lang' => "ru",
			'field
ач
Қыр. 10, 2020, 2:17 Т.Қ.

async function addDeal (data) {
  const { name, email, telephone, title } = data

  async function queryBitrix ({ method, dataQuery }) {
    const url = `https://mentorama.bitrix24.com.br/rest/3/8
BlinCT
Там. 29, 2020, 11:46 Т.Қ.

Item
{
    id: root

    anchors.fill: parent

    StackLayout
    {
        width: parent.width
        currentIndex: coreApp.getCurrentObject().isAttributesFull ? 0 : 1
        anchors.fil
A
Anonymous
Там. 28, 2020, 5:22 Т.Қ.

public class Game2 extends ApplicationAdapter {
    private Skin skin;
    private Stage stage;
    private SpriteBatch batch;
    private WidgetFactory widgetFactory;
    private TextButton move
A
Anonymous
Там. 28, 2020, 5:20 Т.Қ.

public class Game extends ApplicationAdapter {
    Skin skin;
    Stage stage;
    SpriteBatch batch;

    @Override
    public void create () {
        batch = new SpriteBatch();
        stag
A
Anonymous
Там. 27, 2020, 1:24 Т.Ж.

def maxProfit(self, prices):
	"""
    :type prices: List[int]
    :rtype: int
    """
    max_profit = 0
    buy_day = None

    for num, price in enumerate(prices, start=0):
      if num + 1
A
Anonymous
Там. 24, 2020, 5:21 Т.Қ.
A
Anonymous
Там. 18, 2020, 3:35 Т.Ж.

import bla-bla
import bla-bla
import bla-bla
import bla-bla

def __init__(self):
	set_timezone()
    
def index(request):
	kjnlknlk
A
Anonymous
Там. 16, 2020, 5:43 Т.Қ.

mport os
title = "Готово"
message = "Файл скачан"
command = f'''
osascript -e 'display notification "{message}" with title "{title}"'
'''
os.system(command)
A
Anonymous
Там. 16, 2020, 5:16 Т.Ж.
A
Anonymous
Там. 16, 2020, 3:30 Т.Ж.

A	B	C	D	E	F	G	H	I	J
1
		Host Country	Winner	Runner up	Average attendance	Teams	Matches	Goals scored	
Average goals
2
1930 World Cup Uruguay	1930	Uruguay	Uruguay	Argentina	32,808	13	18	70	3.9
3
ач
Там. 14, 2020, 8:19 Т.Ж.

const App = () => {
	
    return (
		<Root activeView={ID_VIEW}>
  
          <View id={ID_VIEW} activePanel={ID_PANEL}>
            <Panel id={ID_PANEL}>
              <Content/>
            
ач
Там. 11, 2020, 9:03 Т.Қ.

.open_container {
  display: flex;
  animation-name: openContainer;
  animation-duration: 200ms;
  animation-timing-function: linear;
}

.close_container {
  display: none;
  animation-name: 
ач
Там. 11, 2020, 7:35 Т.Қ.

import React, { useState, useEffect } from 'react'
import css from './ApplicationForCourseDesktop.module.scss'
import PhoneInput from 'react-phone-input-2'
import 'react-phone-input-2/lib/style.css
ач
Там. 11, 2020, 6:08 Т.Қ.

import React, { useState } from 'react'
import css from './ApplicationForCourseDesktop.module.scss'
import PhoneInput from 'react-phone-input-2'
import 'react-phone-input-2/lib/style.css'

export