This file contains hidden or 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
    
  
  
    
  | import { userEvent } from '@storybook/test' | |
| import { act, fireEvent, render, screen, waitFor } from '@testing-library/react' | |
| import React, { useState } from 'react' | |
| import { Button } from '../../Button' | |
| import { Text } from '../../Text' | |
| import { StepFormDialog } from './StepFormDialog' | |
| import { StepFormDialogItem } from './StepFormDialogItem' | 
  
    
      This file contains hidden or 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
    
  
  
    
  | h1 { | |
| font-weight: bold; | |
| } | |
| body { | |
| font-size: 14px; | |
| color: #37352F; | |
| line-height: 24px; | |
| } | 
  
    
      This file contains hidden or 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
    
  
  
    
  | class HelloWorld: | |
| def __init__(self, name): | |
| self.name = name.capitalize() | |
| def sayHi(self): | |
| print "Hello " + self.name + "!" | |
| hello = HelloWorld("world") | |
| hello.sayHi() | 
  
    
      This file contains hidden or 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
    
  
  
    
  | class HelloWorld: | |
| def __init__(self, name): | |
| self.name = name.capitalize() | |
| def sayHi(self): | |
| print "Hello " + self.name + "!" | |
| hello = HelloWorld("world") | |
| hello.sayHi() | 
  
    
      This file contains hidden or 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
    
  
  
    
  | <template> | |
| <div id="box" @mousedown="flgTrue" @mousemove="handleMove" @mouseleave="flgFalse" @mouseup="flgFalse"> | |
| <div class="content" :style="styles"> | |
| aaaaaaaaaaaaaaaaaaa | |
| {{this.flg}} | |
| </div> | |
| </div> | |
| </template> | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include <iostream> | |
| #include <vector> | |
| #include <queue> | |
| using namespace std; | |
| struct Item { | |
| char c; | |
| int freq; | |
| Item *left; | |
| Item *right; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include <iostream> | |
| #include <vector> | |
| #include <queue> | |
| using namespace std; | |
| struct Item { | |
| char c; | |
| int freq; | |
| Item *left; | |
| Item *right; | 
  
    
      This file contains hidden or 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
    
  
  
    
  | # -*- coding: utf-8 -*- | |
| import pygame.mixer | |
| import serial | |
| import time | |
| import sys | |
| import glob | |
| import random | |
| BLUETOOTH = '/dev/ttyAMA0' | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include <bits/stdc++.h> | |
| using namespace std; | |
| #define Int long long int | |
| #define REP(i,n) for(int i=0;i<(n);i++) | |
| #define REAP(i,a,n) for(int i=(a);i<(n);i++) | |
| #define YES cout<<"Yes"<<endl | |
| #define NO cout<<"No"<<endl | |
| #define fr first | |
| #define sc second | 
  
    
      This file contains hidden or 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
    
  
  
    
  | #include <bits/stdc++.h> | |
| using namespace std; | |
| #define Int long long int | |
| #define REP(i,n) for(int i=0;i<(n);i++) | |
| #define REAP(i,a,n) for(int i=(a);i<(n);i++) | |
| #define YES cout<<"Yes"<<endl | |
| #define NO cout<<"No"<<endl | |
| #define fr first | |
| #define sc second | 
NewerOlder